home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 71 / MOBICLIC 71.ISO / mac / DATA / COMMUN / temp0001 / 00021_Script_21 < prev    next >
Text File  |  2004-12-05  |  421b  |  20 lines

  1. -- gestion du dictionnaire
  2. global pisteDico
  3.  
  4. on mouseUp
  5.   set the visible of sprite pisteDico to not(the visible of sprite pisteDico)
  6.   set the visible of sprite (pisteDico+1) to not(the visible of sprite (pisteDico+1))
  7. end
  8.  
  9. on beginSprite
  10.   set pisteDico = the currentSpriteNum - 2
  11.   masquerPistes pisteDico, (pisteDico+1)
  12. end beginSprite
  13.  
  14. on mouseEnter
  15.   cursor 280
  16. end
  17.  
  18. on mouseLeave
  19.   cursor -1
  20. end